home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / var / lib / dpkg / info / libgtk2.0-0.preinst < prev    next >
Text File  |  2008-10-18  |  284b  |  14 lines

  1. #!/bin/sh
  2.  
  3. set -e
  4.  
  5. # remove /usr/share/doc symlinks as it's a directory since 2.12.5-2
  6. pkg=libgtk2.0-0
  7. oldsymtarget=libgtk2.0-common
  8. if [ "$1" = upgrade ] && [ -L /usr/share/doc/$pkg ] && [ $oldsymtarget = "$(readlink /usr/share/doc/$pkg)" ]; then
  9.     rm -f /usr/share/doc/$pkg
  10. fi
  11.  
  12.  
  13.  
  14.